home *** CD-ROM | disk | FTP | other *** search
/ PC World 2002 March / PCWorld_2002-03_cd.bin / Software / TemaCD / xteq / setup.exe / {app} / plugins / XenOverclockGeForce.xpl < prev    next >
Text File  |  2001-05-15  |  2KB  |  64 lines

  1. "FILE"="Xteq Systems X-Setup Plugin 6.0"
  2. "TYPE"="7"
  3. "COUNT"="2"
  4. "UIPATH"="Hardware\Video Cards\NVidia\GeForce"
  5. "NAME"="GeForce Graphic's Card Overclocker"
  6. "LANGUAGE"="VBScript"
  7. "TEXT 1"="Add Overclocking"
  8. "TEXT 2"="Remove Overclocking"
  9. "DESCRIPTION 1"="This will add the ability to overclock your GeForce video card by adding a slider to your Display Properties dialog to tweak performance. NOTE - This may not work with all driver versions, check http://www.geforcefaq.com for further details."
  10. "DESCRIPTION 2"="NOTE: In most cases this is harmless. If it causes problems simply reboot and set it back to its original setting. Still, you use this at your own risk. This may not work on all computer configurations."
  11. "DESCRIPTION 3"="Plugin Created by J. Scott Elblein"
  12. "VERSION"="1.1"
  13. "WARNING"="You agree to use this at your own risk."
  14. "AUTHOR"="J. Scott Elblein"
  15. "COPYRIGHT"="All Rights Reserved. 2001"
  16. "CONTACTURL"="http://www.xenon-inc.com/"
  17. "COMMENT 1"="... Used with permission"
  18.  
  19. 'Hey XTeq dudes ... how about adding a Bookmarks drop-down list so you can go directly to favorite keys? ;)
  20.  
  21. 'Called when the Plugin is started
  22. SUB Plugin_Initialize
  23.  call setuielement(1,true)
  24.  
  25.   
  26. END SUB
  27.  
  28. 'Called when the Plugin should validate the Data the user has entered
  29. SUB Plugin_CheckData(ElementIndex)
  30. END SUB
  31.  
  32. 'Called when the Plugin should apply the changes
  33. SUB Plugin_Apply(ElementIndex,ElementSubIndex)
  34.  
  35.  b = getuielement(1)
  36.  
  37.  if b = true then
  38.  
  39.     call RegWriteValue("HKLM\Software\NVIDIA Corporation\Global\NVTweak\CoolBits",3,2)
  40.     MsgInformation("Overclocking added. Right click your desktop and choose Properties to use it.")
  41.     Restart
  42.  
  43.  else
  44.  
  45.     if regpathexists("HKLM\Software\NVIDIA Corporation\Global\NVTweak") then
  46.  
  47.        call RegDeletePath("HKLM\Software\NVIDIA Corporation\Global\NVTweak")
  48.        MsgInformation("Overclocking Removed.")
  49.        Restart
  50.  
  51.     else
  52.  
  53.       msginformation("Nothing to Delete.")
  54.  
  55.     end if
  56.  
  57.  end if
  58.  
  59. END SUB
  60.  
  61. 'Called when the Plugin is about to be removed from memory
  62. SUB Plugin_Terminate
  63. END SUB
  64.